home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / zmisc1.c < prev    next >
C/C++ Source or Header  |  1997-05-28  |  4KB  |  141 lines

  1. /* Copyright (C) 1994, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zmisc1.c */
  20. /* Miscellaneous Type 1 font operators */
  21. #include "memory_.h"
  22. #include "ghost.h"
  23. #include "errors.h"
  24. #include "oper.h"
  25. #include "gscrypt1.h"
  26. #include "stream.h"        /* for getting state of PFBD stream */
  27. #include "strimpl.h"
  28. #include "sfilter.h"
  29. #include "idict.h"
  30. #include "idparam.h"
  31. #include "ifilter.h"
  32.  
  33. /* <state> <from_string> <to_string> .type1encrypt <new_state> <substring> */
  34. /* <state> <from_string> <to_string> .type1decrypt <new_state> <substring> */
  35. private int type1crypt(P2(os_ptr,
  36.               int (*)(P4(byte *, const byte *, uint, ushort *))));
  37. private int
  38. ztype1encrypt(os_ptr op)
  39. {    return type1crypt(op, gs_type1_encrypt);
  40. }
  41. private int
  42. ztype1decrypt(os_ptr op)
  43. {    return type1crypt(op, gs_type1_decrypt);
  44. }
  45. private int
  46. type1crypt(register os_ptr op, int (*proc)(P4(byte *, const byte *, uint, ushort *)))
  47. {    crypt_state state;
  48.     uint ssize;
  49.     check_type(op[-2], t_integer);
  50.     state = op[-2].value.intval;
  51.     if ( op[-2].value.intval != state )
  52.         return_error(e_rangecheck);    /* state value was truncated */
  53.     check_read_type(op[-1], t_string);
  54.     check_write_type(*op, t_string);
  55.     ssize = r_size(op - 1);
  56.     if ( r_size(op) < ssize )
  57.         return_error(e_rangecheck);
  58.     discard((*proc)(op->value.bytes, op[-1].value.const_bytes, ssize,
  59.             &state));        /* can't fail */
  60.     op[-2].value.intval = state;
  61.     op[-1] = *op;
  62.     r_set_size(op - 1, ssize);
  63.     pop(1);
  64.     return 0;
  65. }
  66.  
  67. /* Get the seed parameter for eexecEncode/Decode. */
  68. /* Return npop if OK. */
  69. private int
  70. eexec_param(os_ptr op, ushort *pcstate)
  71. {    int npop = 1;
  72.     if ( r_has_type(op, t_dictionary) )
  73.       ++npop, --op;
  74.     check_type(*op, t_integer);
  75.     *pcstate = op->value.intval;
  76.     if ( op->value.intval != *pcstate )
  77.       return_error(e_rangecheck);    /* state value was truncated */
  78.     return npop;
  79. }
  80.  
  81. /* <target> <seed> eexecEncode/filter <file> */
  82. /* <target> <seed> <dict_ignored> eexecEncode/filter <file> */
  83. private int
  84. zexE(register os_ptr op)
  85. {    stream_exE_state state;
  86.     int code = eexec_param(op, &state.cstate);
  87.  
  88.     if ( code < 0 )
  89.       return code;
  90.     return filter_write(op, code, &s_exE_template, (stream_state *)&state,
  91.                 0);
  92. }
  93.  
  94. /* <source> <seed> eexecDecode/filter <file> */
  95. /* <source> <dict> eexecDecode/filter <file> */
  96. private int
  97. zexD(register os_ptr op)
  98. {    stream_exD_state state;
  99.     int code;
  100.  
  101.     (*s_exD_template.set_defaults)((stream_state *)&state);
  102.     if ( r_has_type(op, t_dictionary) ) {
  103.       uint cstate;
  104.  
  105.       check_dict_read(*op);
  106.       if ( (code = dict_uint_param(op, "seed", 0, 0xffff, 0x10000,
  107.                        &cstate)) < 0 ||
  108.            (code = dict_int_param(op, "lenIV", 0, max_int, 4,
  109.                       &state.lenIV)) < 0
  110.          )
  111.         return code;
  112.       state.cstate = cstate;
  113.       code = 1;
  114.     } else {
  115.       code = eexec_param(op, &state.cstate);
  116.     }
  117.     if ( code < 0 )
  118.       return code;
  119.     /* If we're reading a .PFB file, let the filter know about it, */
  120.     /* so it can read recklessly to the end of the binary section. */
  121.     state.pfb_state = 0;
  122.     if ( r_has_type(op - 1, t_file) )
  123.       {    stream *s = (op - 1)->value.pfile;
  124.         if ( s->state != 0 && s->state->template == &s_PFBD_template )
  125.           state.pfb_state = (stream_PFBD_state *)s->state;
  126.       }
  127.     state.binary = -1;
  128.     return filter_read(op, code, &s_exD_template, (stream_state *)&state,
  129.                0);
  130. }
  131.  
  132. /* ------ Initialization procedure ------ */
  133.  
  134. BEGIN_OP_DEFS(zmisc1_op_defs) {
  135.     {"3.type1encrypt", ztype1encrypt},
  136.     {"3.type1decrypt", ztype1decrypt},
  137.         op_def_begin_filter(),
  138.     {"2eexecEncode", zexE},
  139.     {"2eexecDecode", zexD},
  140. END_OP_DEFS(0) }
  141.